home *** CD-ROM | disk | FTP | other *** search
/ Gamers Arsenal 1 / Gamers Arsenal (Arsenal Computer).iso / gifreed / gifv.slh < prev    next >
Text File  |  1993-10-11  |  481b  |  18 lines

  1. ;
  2. ; GIFV.SLH
  3. ; This routine will take all GIF files in the current directory and
  4. ; create BMP files. It will then delete all of the GIF files. This
  5. ; in effect converts your GIF files to BMP files leaving behind no
  6. ; GIF files!
  7. ;
  8.         change-path *.gif
  9. :loop
  10.         loadnext    :exit
  11.         Adjust-For-WIndows    ;Removes the top 16 colors from the
  12.                               ;Color Map in the file.
  13.         write       B
  14.         goto        :loop
  15. :exit
  16.  
  17.  
  18.